04a1c4976559441b7b3c4386030b6af46378b59a,bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/LegacyActionPersistence.java,LegacyActionPersistence,read,#,421
Before Change
}
// Sort the editorActions extension point.
final IConfigurationElement[] editorActionsExtensionPoint = registry
.getConfigurationElementsFor(EXTENSION_EDITOR_ACTIONS);
for (int i = 0; i < editorActionsExtensionPoint.length; i++) {
final IConfigurationElement element = editorActionsExtensionPoint[i];
final String name = element.getName();
if (TAG_EDITOR_CONTRIBUTION.equals(name)) {
addElementToIndexedArray(element, indexedConfigurationElements,
After Change
}
// Sort the editorActions extension point.
for (final IConfigurationElement configElement : registry
.getConfigurationElementsFor(EXTENSION_EDITOR_ACTIONS)) {
final String name = configElement.getName();
if (TAG_EDITOR_CONTRIBUTION.equals(name)) {
addElementToIndexedArray(configElement, indexedConfigurationElements,